int to char C#

87

how to convert int to char in c# -

int i = 65;
char c = Convert.ToChar(i);

int to char C# -

(char)myint;

Comments

Submit
0 Comments